home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
GRAPHICS
/
POV302.ZIP
/
pov302
/
pov3demo
/
other
/
pov
/
ifelse3
< prev
next >
Wrap
Text File
|
1996-03-05
|
324b
|
16 lines
// Persistence Of Vision raytracer version 3.0 sample file.
// Illustrates that #if #else can be nested and it works with #include
#version 3.0
global_settings { assumed_gamma 2.2 }
#if (clock > 0.5)
#if (clock < 2.0)
#include "shear1.pov"
#else
#include "shear2.pov"
#end
#else
#include "shear3.pov"
#end